home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / programming / other / tandem / teaching / 12.asm < prev    next >
Assembly Source File  |  1999-09-06  |  424b  |  12 lines

  1. * 12.asm    And, or, xor         version 0.00     1.9.97
  2.  
  3.  moveq #1,d3
  4.  and.b #1,d3
  5.  move.b #$81,d0   ;D0= %10000001  0&0=1 0&1=0 1&0=0 1&1=1
  6.  and.b #$41,d0    ;#41=%01000001  result %00000001
  7.  move.b #$81,d1   ;D1= %10000001  0!0=0 0!1=1 1!0=1 1!1=1
  8.  or.b #$41,d1     ;#41=%01000001  result %11000001
  9.  move.b #$81,d2   ;D2= %10000001  0eor0=0 0eor1=1 1eor0=1 1eor1=0
  10.  eor.b #$41,d2    ;#41=%01000001  result %11000000
  11.  rts
  12.